curl --request POST \
--url https://api.sequence.app/rpc/Analytics/WalletsDaily \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"filter": {
"projectId": 122,
"startDate": "2024-09-30",
"endDate": "2024-10-10",
"dateInterval": "DAY"
}
}'
{
"walletStats": [
{
"value": "2",
"label": "2024-09-23"
},
{
"value": 3,
"label": "2024-09-29"
}
]
}
Get daily wallet statistics
curl --request POST \
--url https://api.sequence.app/rpc/Analytics/WalletsDaily \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"filter": {
"projectId": 122,
"startDate": "2024-09-30",
"endDate": "2024-10-10",
"dateInterval": "DAY"
}
}'
{
"walletStats": [
{
"value": "2",
"label": "2024-09-23"
},
{
"value": 3,
"label": "2024-09-29"
}
]
}
Secret JWT token for authenticating requests obtained from Sequence Builder - should not be exposed publicly.
OK
The response is of type object
.
¿Esta página le ayudó?